/* Theme Colors */
:root {
  --text-color: #000;
  --secondary-color: #5151ef;
  --main-color: white;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --sub-text-color: #808080;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.hero {
  background: var(--dark-bg-color);
  color: var(--main-color);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--sub-text-color);
}

h2 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding-left: 0;
}



.plans {
  background: var(--main-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.plan {
  background: var(--light-bg-color);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(81, 81, 239, 0.1);
}

.plan h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.plan ul li {
  margin: 8px 0;
}

.plan p {
  color: var(--sub-text-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.btn-glow {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--secondary-color), #6c63ff);
  color: var(--main-color);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(81, 81, 239, 0.4);
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(81, 81, 239, 0.6);
}

.highlighted {
  border: 2px solid var(--secondary-color);
  background: #f4f4ff;
}

.highlighted .badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(81, 81, 239, 0.3);
}

.free-trial-bar {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 60px 0 0;
  flex-wrap: wrap;
}

.free-trial-bar .plan {
  flex: 1;
  min-width: 260px;
  background: #e8edff;
  border: 2px dashed var(--secondary-color);
}

.free-trial-bar .plan h3 {
  color: var(--secondary-color);
}


.see-more-btn{
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  top: -10px;
  background: transparent;
}

.see-more-btn:hover {
  text-decoration: underline;
  cursor: pointer;
}



@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .free-trial-bar {
    flex-direction: column;
  }
}
